From d29ffc8c05c16f55314ce8ae2d6b33c35bad25ce Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 30 May 2007 04:57:13 +0000 Subject: [PATCH] Ulrich Mueller (tiny change) (XMakeAssoc): Use malloc rather than xmalloc. --- oldXMenu/XMakeAssoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c index d443084ac13..cf039c8f3c1 100644 --- a/oldXMenu/XMakeAssoc.c +++ b/oldXMenu/XMakeAssoc.c @@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data) /* If we are here then the new entry should be inserted just */ /* before the current value of "Entry". */ /* Create a new XAssoc and load it with new provided data. */ - new_entry = (XAssoc *) xmalloc(sizeof(XAssoc)); + new_entry = (XAssoc *) malloc(sizeof(XAssoc)); new_entry->display = dpy; new_entry->x_id = x_id; new_entry->data = data; -- 2.30.2